home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
Apps
/
Utilities
/
Unix
/
iLog
/
IPref.h
< prev
next >
Wrap
Text File
|
1992-12-26
|
715b
|
42 lines
/* Generated by Interface Builder */
#import <objc/Object.h>
#import <appkit/Control.h>
#import <appkit/Button.h>
#import <defaults/defaults.h>
#import <string.h>
#import <stdio.h>
#define booltostr(tb) ((tb == YES) ? "YES" : "NO")
/* remember: a 0 return from strcmp is TRUE... AUUUGGGH! */
#define strtobool(ts) (strcmp(ts, "YES") ? NO : YES)
@interface IPref:Object
{
BOOL printeroffF, cshrcF, ilogspaceF, loginF;
char *appName;
id printerOff;
id cshrc;
id ilogspace;
id login;
}
- printerOff:sender;
- cshrc:sender;
- set:sender;
- ilogspace:sender;
- cancel:sender;
- login:sender;
- updateButtons;
- doTasks;
- readDefaults;
/* Application Delegate Stuff */
- appDidInit:sender;
@end